home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / info.postinst < prev    next >
Text File  |  2009-10-27  |  507b  |  16 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "configure" ] || [ "$1" = "upgrade" ]; then
  4.   update-alternatives --install /usr/bin/infobrowser infobrowser \
  5.                                 /usr/bin/info 60 \
  6.                       --slave /usr/share/man/man1/infobrowser.1.gz infobrowser.1.gz \
  7.                               /usr/share/man/man1/info.1.gz
  8. fi
  9.  
  10. # Automatically added by dh_installmenu
  11. if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
  12.     update-menus
  13. fi
  14. # End automatically added section
  15.  
  16.